From b5cdabd7e7a1cba72b405dde77b4d407d3f309e8 Mon Sep 17 00:00:00 2001 From: JohnHake Date: Thu, 25 Apr 2019 16:14:51 -0700 Subject: [PATCH] Fix foo_basics name --- intro/sdk_code_guidelines.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/intro/sdk_code_guidelines.md b/intro/sdk_code_guidelines.md index 48a66c889..8159e9542 100644 --- a/intro/sdk_code_guidelines.md +++ b/intro/sdk_code_guidelines.md @@ -62,16 +62,16 @@ If there is only one package in a plugin, then the package name is the same as t ## Plugin Directory Structure SDK sample code should have a standard directory footprint. Standardized structure not only makes the samples easier to navigate and understand, but it builds on the default Gradle plugin project structure. -The following is the directory structure for a `basic_foo` plugin. +The following is the directory structure for a `foo_basics` plugin. ```text code_samples/ - basic_foo/ + foo_basics/ gradle/ src/ main/ java/ icons/ - BasicFooIcons.java + FooBasicsIcons.java resources/ icons/ sdk.svg # The standard SDK icon for menus, etc.