Browse Source

typo: add space

akeit0 5 days ago
parent
commit
a066d322ab
2 changed files with 2 additions and 2 deletions
  1. 1 1
      README.md
  2. 1 1
      README_JA.md

+ 1 - 1
README.md

@@ -267,7 +267,7 @@ await state.ConcatAsync([arg1, arg2, arg3]); // arg1 .. arg2 .. arg3 in lua
 await state.GetTableAsync(table, key); // table[key] in lua
 await state.GetTableAsync(table, "x"); // table.x in lua
 await state.SetTableAsync(table, key, value); // table[key] = value in lua
-await state.SetTableAsync(table, "x",value); // table.x = value in lua
+await state.SetTableAsync(table, "x", value); // table.x = value in lua
 ```
 
 ## Integration with async/await

+ 1 - 1
README_JA.md

@@ -268,7 +268,7 @@ await state.ConcatAsync([arg1, arg2, arg3]); // arg1 .. arg2 .. arg3 in lua
 await state.GetTableAsync(table, key); // table[key] in lua
 await state.GetTableAsync(table, "x"); // table.x in lua
 await state.SetTableAsync(table, key, value); // table[key] = value in lua
-await state.SetTableAsync(table, "x",value); // table.x = value in lua
+await state.SetTableAsync(table, "x", value); // table.x = value in lua
 ```
 
 ## async/awaitとの統合