-
Notifications
You must be signed in to change notification settings - Fork 1
refactor: shorter titles #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,11 +30,11 @@ For package management we'll use jsonnet-bundler, please | |
> don't know how Kubernetes works, this isn't a requirement for understanding the Jsonnet | ||
> examples. | ||
|
||
1. [Write an extensible library](lesson1.md) | ||
1. [Understanding Package management](lesson2.md) | ||
1. [Exercise: rewrite a library with `k8s-libsonnet`](lesson3.md) | ||
1. [Further developing libraries](lesson4.md) | ||
1. [Providing documentation with Docsonnet](lesson5.md) | ||
1. [Introduction exercise](lesson1.md) | ||
1. [Package management](lesson2.md) | ||
1. [Refactoring exercise](lesson3.md) | ||
1. [Wrapping libraries](lesson4.md) | ||
1. [Documentation](lesson5.md) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. make this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. or better: |
||
1. [Unit testing](lesson6.md) | ||
|
||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,8 +1,8 @@ | ||||||
# Write an extensible library | ||||||
# Introduction exercise | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
Jsonnet gives us a lot of freedom to organize our libraries, there is no right or | ||||||
wrong, however a well-organized library can get you a long way. While applying common | ||||||
software development best-practices, we'll come up with an extensible library to | ||||||
software development best-practices, we'll come up with an *extensible library* to | ||||||
deploy a webserver on Kubernetes. | ||||||
|
||||||
|
||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,4 +1,4 @@ | ||||||
# Providing documentation with Docsonnet | ||||||
# Documentation | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
[Docsonnet](https://github.com/jsonnet-libs/docsonnet) provides a way to consistently | ||||||
add docstrings to Jsonnet code. As Docsonnet docstrings are written as Jsonnet | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.