Skip to content

Commit 8bb666d

Browse files
astorijeSashko Stubailo
authored and
Sashko Stubailo
committed
Fix underscores being parsed in introspection doc (graphql#158)
Escaping underscores using backslashes to avoid Markdown treating them as bold and missing the last one.
1 parent 66ef2e3 commit 8bb666d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

site/learn/Learn-Introspection.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ Wow, that's a lot of types! What are they? Let's group them:
4545
defined in our type system.
4646
- **String, Boolean** - These are built-in scalars that the type system
4747
provided.
48-
- **__Schema, __Type, __TypeKind, __Field, __InputValue, __EnumValue,
49-
__Directive** - These all are preceded with a double underscore, indicating
50-
that they are part of the introspection system.
48+
- **\_\_Schema, \_\_Type, \_\_TypeKind, \_\_Field, \_\_InputValue,
49+
\_\_EnumValue, \_\_Directive** - These all are preceded with a double
50+
underscore, indicating that they are part of the introspection system.
5151

5252
Now, let's try and figure out a good place to start exploring what queries are
5353
available. When we designed our type system, we specified what type all queries

0 commit comments

Comments
 (0)