Skip to content

Commit

Permalink
Minor README fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Jun 8, 2021
1 parent 5d0b992 commit 83ed806
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 @@ -7,7 +7,7 @@ Color Converter is an Android app to pick, display and convert colors.

Download Color Converter from [Google Play](https://play.google.com/store/apps/details?id=com.mrgames13.jimdo.colorconverter)!

More information on our homepage: [https://chillibits.com/colorconverter](https://chillibits.com/colorconverter)
More information on the projects website: [https://chillibits.com/colorconverter](https://chillibits.com/colorconverter)

## Features
- Pick colors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import androidx.room.PrimaryKey
@Entity(tableName = "colors")
data class ColorDbo(
@PrimaryKey(autoGenerate = true)
@ColumnInfo(name = "id") val id: Int,
@ColumnInfo(name = "id") val id: Int,
@ColumnInfo(name = "name") var name: String,
@ColumnInfo(name = "alpha") val alpha: Int,
@ColumnInfo(name = "red") val red: Int,
Expand Down

0 comments on commit 83ed806

Please sign in to comment.