Skip to content

Commit

Permalink
fix PhoneType generated example, add link to basic example (#1604)
Browse files Browse the repository at this point in the history
  • Loading branch information
phkorn authored Oct 30, 2023
1 parent deaa7c1 commit f288507
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit f288507

Please sign in to comment.