Skip to content

Commit

Permalink
Merge pull request #72 from qaisjp/patch-1
Browse files Browse the repository at this point in the history
Fix HTML spellings
  • Loading branch information
leaanthony authored May 1, 2019
2 parents ac203ec + 9c98a7a commit 67a1f23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ It is recommended at this stage to read the comprehensive documentation at [http

* Who is this project aimed at?

Go programmers who want to bundle an HMTL/JS/CSS frontend with their applications, without resorting to creating a server and opening a browser to view it.
Go programmers who want to bundle an HTML/JS/CSS frontend with their applications, without resorting to creating a server and opening a browser to view it.

* What's with the name?

Expand Down
2 changes: 1 addition & 1 deletion app_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func (a *AppConfig) merge(in *AppConfig) error {
a.HTML = strings.TrimSpace(inlineHTML)

// Deduce whether this is a full html page or a fragment
// The document is determined to be a fragment if an HMTL
// The document is determined to be a fragment if an HTML
// tag exists and is located before the first div tag
HTMLTagIndex := strings.Index(a.HTML, "<html")
DivTagIndex := strings.Index(a.HTML, "<div")
Expand Down

0 comments on commit 67a1f23

Please sign in to comment.