OSDN Git Service

Regular updates
authorErik <erikgronwal@users.osdn.me>
Fri, 23 Jun 2023 14:55:06 +0000 (23:55 +0900)
committerErik <erikgronwal@users.osdn.me>
Fri, 23 Jun 2023 14:55:06 +0000 (23:55 +0900)
bash.md
graphql.md

diff --git a/bash.md b/bash.md
index b077fdc..c079175 100644 (file)
--- a/bash.md
+++ b/bash.md
@@ -48,7 +48,7 @@ Generally quote your variables unless they contain wildcards to expand or comman
 
 ```bash
 wildcard="*.txt"
-option="iv"
+options="iv"
 cp -$options $wildcard /tmp
 ```
 
index f03d722..b4491d8 100644 (file)
@@ -218,7 +218,7 @@ See: [sogko/graphql-shorthand-notation-cheat-sheet](https://raw.githubuserconten
 
 ```js
 type Mutation {
-  users(params: ListUsersInput) [User]!
+  users(params: ListUsersInput): [User]!
 }
 ```
 
@@ -258,7 +258,7 @@ type Album { ยทยทยท }
 union Result = Artist | Album
 
 type Query {
-  search(q: String) [Result]
+  search(q: String): [Result]
 }
 ```
 {: data-line="4"}