Skip to content

Commit

Permalink
docs: update docs.page
Browse files Browse the repository at this point in the history
  • Loading branch information
kosukesaigusa committed Jan 21, 2024
1 parent 2c34077 commit e8eb90a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"name": "flutterfire_gen",
"description": "flutterfire_gen is a package for automatic code generation for Cloud Firestore. It supports efficient CRUD operations with type-safe interfaces and methods.",
"theme": "#36B9B9",
"logo": "/assets/logo.png",
"sidebar": {
"en": [
[
Expand Down
8 changes: 4 additions & 4 deletions docs/ja/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ dart run build_runner build --delete-conflicting-outputs

### 読み取り処理を実行する

たとえば、`todo` コレクションのドキュメントを一括取得するには `fetchDocuments` メソッドを呼び出します。
たとえば、`todos` コレクションのドキュメントを一括取得するには `fetchDocuments` メソッドを呼び出します。

```dart
final query = TodoQuery();
Expand All @@ -127,7 +127,7 @@ print(todo.todoId); // fetched document ID.

### 作成処理を実行する

`todo` コレクションにドキュメントを作成するには `add` メソッドを呼び出します。
`todos` コレクションにドキュメントを作成するには `add` メソッドを呼び出します。

```dart
final query = TodoQuery();
Expand All @@ -151,7 +151,7 @@ print(documentReference.id); // created document ID.

### 更新処理を実行する

`todo` コレクションのドキュメントを更新するには `update` メソッドを呼び出します。
`todos` コレクションのドキュメントを更新するには `update` メソッドを呼び出します。

```dart
final query = TodoQuery();
Expand All @@ -173,7 +173,7 @@ await query.update(

### 削除処理を実行する

`todo` コレクションのドキュメントを削除するには `delete` メソッドを呼び出します。
`todos` コレクションのドキュメントを削除するには `delete` メソッドを呼び出します。

```dart
final query = TodoQuery();
Expand Down

0 comments on commit e8eb90a

Please sign in to comment.