note               package:reposTools               R Documentation

_I_n_f_o_r_m_a_t_i_o_n_a_l _M_e_s_s_a_g_e_s

_D_e_s_c_r_i_p_t_i_o_n:

     Generates an informational message that corresponds to its
     argument(s).  Similar to warning() except prefaced by "Note:"
     instead of "Warning message:".

_U_s_a_g_e:

     note(...)

_A_r_g_u_m_e_n_t_s:

     ...: character vectors (which are pasted together) or NULL

_D_e_t_a_i_l_s:

     This function essentially cat()'s the created string to the
     screen. It is intended for messages to the user that are deemed to
     be 'informational', as opposed to warnings, etc.

_A_u_t_h_o_r(_s):

     Jeff Gentry

_S_e_e _A_l_s_o:

     'warning','stop'

_E_x_a_m_p_l_e_s:

        note("This is an example of a note")

