Skip to content
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

fix PhoneType generated example, add link to basic example #1604

Merged
merged 1 commit into from
Oct 30, 2023
Merged
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
4 changes: 2 additions & 2 deletions docs/src/main/markdown/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Protocol buffers are the flexible, efficient, automated solution to solve exactl
## Where to Find the Example Code

The example code for this tutorial is under the `examples/basic` directory
in ScalaPB's repo. To get your copy:
in [ScalaPB's repo](https://github.com/scalapb/ScalaPB/tree/master/examples/basic). To get your copy:

```bash
git clone https://github.com/scalapb/ScalaPB.git
Expand Down Expand Up @@ -135,7 +135,7 @@ object PhoneType {
case object HOME extends PhoneType(1) {
val index = 1
val name = "HOME"
override def isMobile: Boolean = true
override def isHome: Boolean = true
}

// ...
Expand Down