Skip to content

Commit

Permalink
The spelling of Te reo Māori greeting is Kia ora (hadley#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
efcaguab authored May 28, 2021
1 parent 98f1fd1 commit 456babe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action-feedback.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ ui <- fluidPage(
server <- function(input, output, session) {
greetings <- c(
English = "Hello",
Maori = "Ki ora"
Maori = "Kia ora"
)
output$greeting <- renderText({
paste0(greetings[[input$language]], " ", input$name, "!")
Expand All @@ -149,7 +149,7 @@ Now nothing will be displayed until the user has supplied values for both langua
server <- function(input, output, session) {
greetings <- c(
English = "Hello",
Maori = "Ki ora"
Maori = "Kia ora"
)
output$greeting <- renderText({
req(input$language, input$name)
Expand Down

0 comments on commit 456babe

Please sign in to comment.