Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/testing-code/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func TestFailedTranslateActivityBadLanguageCode(t *testing.T) {

// Assert that the error has the expected message, which identifies
// the invalid language code as the cause
assert.Equal(t, "HTTP Error 400: Unknown language code \"xq\"", applicationErr.Message())
assert.Equal(t, "HTTP Error 400: Unknown language code 'xq'\n", applicationErr.Message())
}
```

Expand Down
5 changes: 3 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
margin: 0;
padding: 1em;
color: var(--color-fg-default);
background-color: var(--color-canvas-default);
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
Expand Down Expand Up @@ -213,6 +214,7 @@
.markdown-body samp {
font-family: monospace,monospace;
font-size: 1em;
color: var(--color-fg-default);
}

.markdown-body figure {
Expand Down Expand Up @@ -1034,5 +1036,4 @@

.markdown-body ::-webkit-calendar-picker-indicator {
filter: invert(50%);
}

}
Loading