Remove useless line in example.
The struct and typedef decl can be the same line, and if they're not
I'm not actually sure which decl the docs need to go on...
PiperOrigin-RevId: 678808641
Change-Id: If1d02723292ad46ca95343320e7af17394d4179d
diff --git a/api-guidelines/ndk.md b/api-guidelines/ndk.md
index ae7a07b..c38d6da 100644
--- a/api-guidelines/ndk.md
+++ b/api-guidelines/ndk.md
@@ -475,7 +475,6 @@
2. **Typedef structs by default**, for example:
```c++ {.good}
- struct AIBinder;
typedef struct AIBinder AIBinder;
```